-
Notifications
You must be signed in to change notification settings - Fork 623
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CASSGO-46 Merge ring and ringDescriber #1849
base: trunk
Are you sure you want to change the base?
Conversation
It was only used once in Session init(), but init is only called once and it does not make sense to do round robin there.
FYI @dkropachev |
I haven't fully looked at this yet but I do think there's merit in cleaning up the code related to host metadata. As we're currently working on the 2.0 release and this PR seems mostly focused on code quality I think this is probably a good issue/PR to look at after we're done with 2.0 development, can you create a JIRA for this? |
@joao-r-reis What steps should I take to be able to do that? I see that public signup is disabled |
I've created a JIRA for this: CASSGO-46. If you want to continue contributing in the future you can use this link to request a JIRA account. |
Previously we had two separate structs to store hosts data.
This PR merges both of them and additionally does some refactoring like removing unnecessary methods/structs. The goal is to improve the code logic to make it easier to work with and understand. Having hosts metadata in so many places all over the driver can be confusing and this PR aims to fix it.